home *** CD-ROM | disk | FTP | other *** search
- ;***** Kit Early Startup Control Installation Script
-
- (transcript "Installing Kit Early Startup Control...")
- (set @default-dest "SYS:")
-
- ;***** Introduction
- (complete 0)
-
- (set destination "s:Startups")
-
- (if (= (exists destination) 2)
- (message
- "The \"S:Startups\" directory in already existing."
- )
- )
-
- (makedir destination
- (help @makedir-help)
- (infos)
- )
-
- (copyfiles
- (prompt "Duplicating Startup_Sequence...\nto s:startups/Startup_normal ")
- (source "S:Startup-Sequence")
- (dest destination)
- (help @copyfiles-help)
- )
-
- (run ("rename S:Startups/Startup-Sequence S:Startups/Startup_normal"))
- (run ("rename S:Startup-Sequence S:Kesc-Startup"))
-
- (copyfiles
- (prompt "Replacing Startup-Sequence...")
- (source "/s/Startup-Sequence")
- (dest "S:")
- )
-
- (copyfiles
- (prompt "copying the defaults prefs...")
- (source "/s/kesc.prefs")
- (dest "s:")
- )
-
- (complete 40)
-
- (copyfiles
- (prompt "Installing command in C:")
- (source "/Kesc")
- (dest "C:")
- )
-
- ;***** Finished
- (complete 100)
-
- (exit "Please reboot your computer before trying to launch KESC. (LMB)")
-